projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd47bd3
)
(set_case_table): Set upcase_table, case_canon_table
author
Richard M. Stallman
<rms@gnu.org>
Mon, 6 May 1996 04:28:32 +0000
(
04:28
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Mon, 6 May 1996 04:28:32 +0000
(
04:28
+0000)
and case_eqv_table in the buffer.
src/casetab.c
patch
|
blob
|
history
diff --git
a/src/casetab.c
b/src/casetab.c
index 112910cc09c4960b78e358a3d7110181fb3755aa..f0612fe1b5465f76a789207fb7e59ce37a1eae19 100644
(file)
--- a/
src/casetab.c
+++ b/
src/casetab.c
@@
-159,7
+159,12
@@
set_case_table (table, standard)
if (standard)
Vascii_downcase_table = table;
else
- current_buffer->downcase_table = table;
+ {
+ current_buffer->downcase_table = table;
+ current_buffer->upcase_table = up;
+ current_buffer->case_canon_table = canon;
+ current_buffer->case_eqv_table = eqv;
+ }
return table;
}